/* Activation Page Styles */
.activation_style {
  background-image: url('/assets/Images/activation.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.app_form {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 40%;
  padding: 20px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .app_form {
    width: 100%;
  }
}

.btn_back {
  position: absolute;
  top: 57px;
  background: rgba(22, 42, 43, 1);
  opacity: 0.8;
  width: 55px;
  height: 55px;
  left: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 4px 15px rgba(4, 4, 4, 0.5));
  cursor: pointer;
}

.btn_back i {
  color: white;
}

@media screen and (max-width: 700px) {
  .btn_back {
    top: 40px;
    left: 20px;
  }
}

.btn_otp_submit {
  width: 100%;
}

.btn_otp_submit .p-button {
  background-color: var(--color-secondary) !important;
}

.btn_otp_submit .p-button:enabled:focus {
  box-shadow: 0 0 0 0.1rem rgba(249, 115, 22, 0.4) !important;
  border-color: #1f2937 !important;
}

/* Resend Code Button Styles */
.resend-container {
  margin: 20px 0;
}

.resend-button {
  color: var(--color-secondary) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.resend-button:hover {
  background-color: rgba(249, 115, 22, 0.1) !important;
  transform: translateY(-1px) !important;
}

.resend-button:disabled {
  color: #9ca3af !important;
  cursor: not-allowed !important;
}

.resend-message {
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
}

/* Ant Design OTP Input Styles */
.otp-input-antd {
  width: 100%;
  max-width: 300px;
}

.otp-input-antd .ant-input-otp-input {
  width: 64px !important;
  height: 64px !important;
  font-size: 24px !important;
  font-weight: bold !important;
  text-align: center !important;
  border: 2px solid #d1d5db !important;
  border-radius: 12px !important;
  background-color: var(--color-secondary) !important;
  color: white !important;
  transition: all 0.2s ease !important;
}

.otp-input-antd .ant-input-otp-input:focus {
  border-color: var(--color-secondary) !important;
  outline: none !important;
  transform: scale(1.05) !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3) !important;
}

.otp-input-antd .ant-input-otp-input:not(:placeholder-shown) {
  border-color: #10b981 !important;
}

.otp-input-antd .ant-input-otp-input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive OTP Input */
@media (max-width: 640px) {
  .otp-input-antd .ant-input-otp-input {
    width: 56px !important;
    height: 56px !important;
    font-size: 20px !important;
  }
}

.contact-container {
  text-align: center;
  margin: 24px 0 16px 0;
  padding: 0;
}

.contact-message {
  color: #4b5563;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px; 
  border-radius: 12px;
  border: 1px solid rgba(206, 147, 26, 0.2);
  transition: all 0.3s ease;
  min-width: 280px;
  max-width: 320px;
  background-color: rgba(206, 147, 26, 0.05);
}

.contact-item:hover {
  border-color: rgba(206, 147, 26, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 147, 26, 0.15);
}

.contact-icon {
  font-size: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-link {
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  flex: 1;
  text-align: left;
}

.contact-link:hover {
  color: var(--color-secondary);
} 
.w-100 {
  width: 100%;
}  

/* Responsive Design */
@media (max-width: 640px) {
  .app_form {
    padding: 16px;
    margin: 16px;
  }

  .btn_back {
    top: 40px;
    left: 20px;
    width: 45px;
    height: 45px;
  }

  .contact-item {
    min-width: 260px;
    max-width: 100%;
    padding: 10px 14px;
    gap: 8px;
  }

  .contact-icon {
    font-size: 18px;
  }

  .contact-label {
    font-size: 13px;
  }

  .contact-link {
    font-size: 13px;
  }

  .contact-message {
    font-size: 14px;
    margin-bottom: 16px;
  }
}


/* Loading State Styles */
.otp-input-antd.ant-input-otp-disabled .ant-input-otp-input {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  background-color: #f5f5f5 !important;
}

/* Loading Overlay */
.loading-overlay {
  position: relative;
}

.loading-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}